home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / f2c / may_5_92.lha / f2c.VMay_5_1992 / libF77 / d_lg10.c < prev    next >
C/C++ Source or Header  |  1992-05-07  |  136b  |  12 lines

  1. #include "f2c.h"
  2.  
  3. #define log10e 0.43429448190325182765
  4.  
  5. double d_lg10(x)
  6. doublereal *x;
  7. {
  8. double log();
  9.  
  10. return( log10e * log(*x) );
  11. }
  12.